func golang.org/x/net/internal/httpsfv.isDigit

9 uses

	golang.org/x/net/internal/httpsfv (current package)
		httpsfv.go#L25: func isDigit(b byte) bool {
		httpsfv.go#L38: 	if isAlpha(b) || isDigit(b) {
		httpsfv.go#L58: 		if !isDigit(in) && !(in >= 'a' && in <= 'f') {
		httpsfv.go#L61: 		if isDigit(in) {
		httpsfv.go#L311: 		if !isLCAlpha(ch) && !isDigit(ch) && !slices.Contains([]byte("_-.*"), ch) {
		httpsfv.go#L330: 	if !isDigit(s[i]) {
		httpsfv.go#L335: 		if isDigit(ch) {
		httpsfv.go#L478: 		if ch := s[i]; !isAlpha(ch) && !isDigit(ch) && !slices.Contains([]byte("+/="), ch) {
		httpsfv.go#L648: 	case ch == '-' || isDigit(ch):